From: Keir Fraser Date: Wed, 14 May 2008 12:25:19 +0000 (+0100) Subject: ia64: fix domain restore X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14215^2~4 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=a295f2a1c691a3043cf0c6c266a9efc54f105f16;p=xen.git ia64: fix domain restore A domain fails to restore on IA64 since cset 17524:18727843db60. This patch fixes it temporarily. Guest CPUID configuration for IA64 might be implemented in the future. Signed-off-by: Kouya Shimura --- diff --git a/tools/python/xen/xend/image.py b/tools/python/xen/xend/image.py index 72cdc042ba..237db8875a 100644 --- a/tools/python/xen/xend/image.py +++ b/tools/python/xen/xend/image.py @@ -720,6 +720,9 @@ class IA64_HVM_ImageHandler(HVMImageHandler): (self.getRequiredInitialReservation() / 1024) ]) return args + def setCpuid(self): + # Guest CPUID configuration is not implemented yet. + return class IA64_Linux_ImageHandler(LinuxImageHandler):